gdk: Add a missing Since tag
authorMatthias Clasen <mclasen@redhat.com>
Mon, 21 Mar 2016 02:45:06 +0000 (22:45 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Mon, 21 Mar 2016 02:45:06 +0000 (22:45 -0400)
gdk_drag_context_manage_dnd was introduced this cycle.

gdk/gdkdnd.c

index 3cbd5312cac96f0b7ccdc11a2d9e6db9c9fbcaea..2aa205de23e866ee58a62508699d22b0a30fd9c5 100644 (file)
@@ -686,6 +686,8 @@ gdk_drag_drop_done (GdkDragContext *context,
  *   cancelled through other means.
  *
  * Returns: #TRUE if the drag and drop operation is managed.
+ *
+ * Since: 3.20
  **/
 gboolean
 gdk_drag_context_manage_dnd (GdkDragContext *context,
@@ -696,8 +698,7 @@ gdk_drag_context_manage_dnd (GdkDragContext *context,
   g_return_val_if_fail (GDK_IS_WINDOW (ipc_window), FALSE);
 
   if (GDK_DRAG_CONTEXT_GET_CLASS (context)->manage_dnd)
-    return GDK_DRAG_CONTEXT_GET_CLASS (context)->manage_dnd (context, ipc_window,
-                                                             actions);
+    return GDK_DRAG_CONTEXT_GET_CLASS (context)->manage_dnd (context, ipc_window, actions);
 
   return FALSE;
 }